home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Texteditors / FrexxEd / fpl / FH_Action.FPL < prev    next >
Encoding:
Text File  |  1996-09-27  |  279 b   |  9 lines

  1. export int FileHandlerAction(int bufferid, int type)
  2. {
  3.   if (type==2 || type==5) { // Hook Write and Create
  4.     Activate(bufferid, 1);  // Activate on half view.
  5.     ExecuteString("GotoLine(-1,-1);", bufferid); // Goto last line
  6.   }
  7. }
  8. Hook("HandlerAction", "FileHandlerAction");
  9.